8d67d65d5493811be6d6be5c91e6a52c5543c4a2,modules/apps/asset/asset-publisher-web/src/main/java/com/liferay/asset/publisher/web/util/AssetPublisherUtil.java,AssetPublisherUtil,getAssetEntries,#AssetEntryQuery#Layout#PortletPreferences#String#Locale#TimeZone#number#number#number#Map#number#number#,391
Before Change
String[] assetTagNames = getAssetTagNames(portletPreferences);
String keywords = assetEntryQuery.getKeywords();
return AssetUtil.searchAssetEntries(
assetCategoryIds, assetTagNames, keywords, locale,
After Change
}
public static BaseModelSearchResult<AssetEntry> getAssetEntries(
AssetEntryQuery assetEntryQuery, Layout layout,
PortletPreferences portletPreferences, String portletName,
Locale locale, TimeZone timeZone, long companyId, long scopeGroupId,
long userId, Map<String, Serializable> attributes, int start,
int end)
throws Exception {
if (isSearchWithIndex(portletName, assetEntryQuery)) {
return AssetUtil.searchAssetEntries(
assetEntryQuery, getAssetCategoryIds(portletPreferences),
getAssetTagNames(portletPreferences), attributes, companyId,
assetEntryQuery.getKeywords(), layout, locale, scopeGroupId,
timeZone, userId, start, end);
}